Skip to main content

User Template Details Endpoint

Overview

This endpoint allows users to retrieve details of a specific template within a collection.

Request Details

HTTP Method

GET

Route

/api/users/[user_id]/collections/[collection_id]/templates/[template_id]

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
collection_idintegerYesThe ID of the template collection
template_idintegerYesThe ID of the template

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Cookieneptun-sessionYesSession authentication cookie

Query Parameters

No query parameters required.

Request Body

No request body required.

Response Format

Response Status Codes

Status CodeDescription
200Successfully retrieved template
401Unauthorized (invalid or missing session)
403Forbidden (user_id mismatch)
404Template not found
500Server error

Success Response (200 OK)

{
"template": {
"id": 1,
"description": "Basic Docker deployment script",
"file_name": "docker-deploy.sh",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z",
"neptun_user_id": 1,
"template_collection_id": 1,
"user_file_id": 1
}
}

Error Response (404 Not Found)

{
"statusCode": 404,
"message": "Template not found"
}

TypeScript Interface

interface Template {
id: number
description?: string
file_name: string
created_at: string
updated_at: string
neptun_user_id: number
template_collection_id?: number
user_file_id?: number
title?: string
text: string
language: string
extension: string
}

interface ApiResponse {
template: Template
}

Python Model

from datetime import datetime
from typing import Optional
from pydantic import BaseModel

class Template(BaseModel):
id: int
description: Optional[str]
file_name: str
created_at: datetime
updated_at: datetime
neptun_user_id: int
template_collection_id: Optional[int]
user_file_id: Optional[int]
title: Optional[str]
text: str
language: str
extension: str

class ApiResponse(BaseModel):
template: Template

Code Examples

cURL Example

curl -X GET "https://neptun-webui.vercel.app/api/users/1/collections/1/templates/1" \
-H "Accept: application/json" \
-H "Cookie: neptun-session=your-session-cookie"

Python Example

import httpx
from typing import Optional

async def get_template(
user_id: int,
collection_id: int,
template_id: int,
session_cookie: str
) -> ApiResponse:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/collections/{collection_id}/templates/{template_id}"

async with httpx.AsyncClient() as client:
response = await client.get(
url,
headers={
"Accept": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()
return ApiResponse(**response.json())

TypeScript/JavaScript Example

async function getTemplate(
userId: number,
collectionId: number,
templateId: number,
sessionCookie: string
): Promise<ApiResponse> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/collections/${collectionId}/templates/${templateId}`,
{
headers: {
Accept: 'application/json',
Cookie: `neptun-session=${sessionCookie}`,
},
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}

return await response.json()
}

Notes

  • The session cookie is required for authentication
  • The template must belong to the specified collection
  • The collection must belong to the specified user